/* PSD CONTACT MODAL STYLES */
.psd-modal {
    display: none; /* ഡിഫോൾട്ടായി മറച്ചുവെക്കുന്നു */
    position: fixed;
    z-index: 10000; /* ലൈറ്റ്ബോക്സിനേക്കാൾ മുകളിൽ */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.85); /* ഇരുണ്ട പശ്ചാത്തലം */
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
}

.psd-modal-content {
    background: #111; /* നിങ്ങളുടെ സൈറ്റ് തീമിന് അനുസരിച്ചുള്ള നിറം */
    color: #fff;
    margin: 15% auto;
    padding: 40px;
    border: 2px solid #00e5ff; /* ബോർഡർ കളർ */
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,229,255,0.3);
}

.psd-close-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.psd-close-modal:hover,
.psd-close-modal:focus {
    color: #00e5ff;
    text-decoration: none;
    cursor: pointer;
}

.psd-pricing-box {
    background: rgba(0,229,255,0.1);
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid #00e5ff;
}

.psd-pricing-box h3 {
    color: #00e5ff;
    margin: 0;
}

.psd-contact-options {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-link, .email-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    
    /* മാറ്റങ്ങൾ ഇവിടെ: */
    background-color: transparent; /* ബാക്ക്ഗ്രൗണ്ട് ഒഴിവാക്കി */
    border: 2px solid #00e5ff;    /* സൈറ്റിന്റെ ആക്സന്റ് കളറിലുള്ള ബോർഡർ */
    color: #00e5ff;               /* ടെക്സ്റ്റ് കളർ */
}

.whatsapp-link:hover {
    background-color: #00e5ff;    /* ഹോവർ ചെയ്യുമ്പോൾ നിറം നിറയുന്നു */
    color: #000;                  /* ടെക്സ്റ്റ് കറുപ്പാകുന്നു */
}

.email-link {
    background-color: #00e5ff; /* നിങ്ങളുടെ സൈറ്റ് ആക്സന്റ് കളർ */
    color: #000;
}

.email-link:hover {
    background-color: #00acc1;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}